home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 2 / AACD 2.iso / AACD / Graphics / ImageFX / JPEG_PPC / jpeg.readme < prev    next >
Encoding:
Text File  |  1999-05-13  |  3.7 KB  |  95 lines

  1. Short:    JPEG ImageFX loader. PPC version (1.3)
  2. Author:   M.Smyk, S.Jedruszkiewicz(PPC version)
  3. Uploader: bjsebo@jota.ii.tuniv.szczecin.pl
  4. Type:     gfx/ifx
  5. Requires: ImageFX,ppc.library
  6. Replaces: gfx/ifx/ifx_jpeg.lha
  7.  
  8.                      PPC JPEG ImageFX loader.
  9.                           version 1.3
  10.  
  11.  This is version 1.3 of PPC JPEG loader for ImageFX. Based on Miloslaw
  12. Smyk 68k version. It uses JPEG library version 6b. Both normal and 
  13. progressive JPEG's are supported.
  14.  
  15. INSTALATION:
  16.  Copy file JPEG to ImageFX/modules/loaders/.
  17. Remember to backup old version of JPEG loader (in case of bugs in this
  18. release). Renaming the old JPEG loader is not enough - you should
  19. move it into other directory) Make sure you have removed all JPEG files
  20. (including JPEG.040 .000. 060) Also make sure you have JPEGTMP: assigned 
  21. somewhere (T: is a good choice). Then copy the prefs file into 
  22. ENVARC:ImageFX directory. I think ImageFX v3 uses env:ImageFX3 dir.
  23. It is also safe to put this prefs file there. JPEG loader will check
  24. both paths for prefs file.
  25.  
  26. USAGE:
  27.  First take a look at envarc/ImageFX/JPEG_Loader file. 
  28. The template is: "NOGUI/S,FU=FANCY_UPSAMPLING/S,DCT/K"
  29.  NOGUI - no gui will be shown.
  30.  FU    - Also called smoothing. If set smoothing will be enabled.
  31.  DCT   - DCT method. There are 3 allowed:
  32.          ISLOW - Use integer DCT method.
  33.          IFAST - Use fast integer DCT (less accurate).
  34.          FLOAT - Use floating-point DCT method.
  35.               The float method is very slightly more accurate than
  36.               the int method, but is much slower unless your machine
  37.               has very fast floating-point hardware.  Also note that
  38.               results of the floating-point method may vary slightly
  39.               across machines, while the integer methods should give
  40.               the same results everywhere.
  41.          The fast integer method is much less accurate than the other two.
  42.  
  43.  
  44. SPEED:
  45.  I have tested this on BlizzPPC 68040/25 + 603/200. It is about 6 times 
  46. faster than 68k version of JPEG loader. Loading 1400x1000 jpeg file
  47. takes about 3 seconds. Loading the same file with 68k version took 14s.
  48.  
  49. BUGS:
  50.      - reading corrupted JPEGs may cause crash. It happens
  51.        when JPEG has got not complete file header. Be carefull
  52.        with JPEG smaller than 2048 bytes.
  53.      - progress bar does not work with progressive jpegs. 
  54.        (in first phase) This is actually not bug, I just don't
  55.        know how to implement this feature.
  56.  
  57. Please report bugs to: bjsebo@jota.ii.tuniv.szczecin.pl
  58.  
  59. IS IT FREE?
  60.  Particulary yes. But this software is giftware, which means, if you like
  61.  it, you should send cool stuff (chocolates, postcards, computers, cars etc.)
  62.  to:
  63.  
  64.   Miloslaw Smyk                         Sebastian Jedruszkiewicz
  65.   ul. Orawska 22/34            or       ul. P.Jasienicy 4/7
  66.   70-131 Szczecin, POLAND               70-492 Szczecin, POLAND
  67.  
  68.  
  69. HISTORY:
  70.  v1.3 (11-05-99)
  71.      - Finally removed the bug with no closing loaded JPEG file.
  72.      - All errors are now shown in ImageFX requester.
  73.      - Fixed GUI to be font sensitive. Thanks must go to Konrad Bielski
  74.        for pointing me that.
  75.      - Clicking close gadget in gui has now the same
  76.        effect like 'Cancel'.
  77.  
  78.  v1.2 (06-05-99)
  79.      - Fixed bug with errors handling.
  80.      - replaced JPEG lib 6a with 6b.
  81.  
  82.  v1.1 (01.05.99)
  83.      - Fixed problems with caches clearing on PPC side.
  84.  
  85.  v1.0 (30.04.99)
  86.      - recompiled JPEG lib with latest egcs. 3x faster. egcs rulez ;)
  87.      - Changed GUI a bit. Added new Image (W.F.M.H. + Venus Art ;)
  88.      - Loader was looking for prefs file in env:ImageFX/ dir.
  89.        Fixed to search both env:ImageFX and env:ImageFX3.
  90.  
  91.  v0.9 (29.04.99)
  92.      - just received sources from Milek. Thanks a lot!
  93.      - recompiled JPEG lib 6a with sasc.
  94.      - created first working version of JPEG loader.
  95.